home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue56 / VFI / Listing1.pas next >
Encoding:
Pascal/Delphi Source File  |  2000-02-29  |  155 b   |  6 lines

  1. procedure TBasicForm.FormKeyPress(Sender: TObject; var Key: Char);
  2. if Key = #13 then
  3. begin
  4.   Key:=#0;
  5.   SendMessage(Handle, WM_NEXTDLGCTL, 0, 0);
  6. end;